From: Jim Blandy Date: Mon, 15 Mar 1993 06:37:33 +0000 (+0000) Subject: * indent.el (indent-region, indent-region-function): Doc fix. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~96859 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=797d8537f2effa462cfb7232e1bf48ad44bf4172;p=emacs.git * indent.el (indent-region, indent-region-function): Doc fix. --- diff --git a/lisp/indent.el b/lisp/indent.el index 73c9561b1ad..8a972b82349 100644 --- a/lisp/indent.el +++ b/lisp/indent.el @@ -77,12 +77,12 @@ Called from a program, takes three arguments, START, END and ARG." (goto-char epos))))) (defvar indent-region-function nil - "Function which is short cut to indent each line in region with TAB. -A value of nil means really perform TAB on each line.") + "Function which is short cut to indent region using indent-according-to-mode. +A value of nil means really run indent-according-to-mode on each line.") (defun indent-region (start end arg) "Indent each nonblank line in the region. -With no argument, indent each line with TAB. +With no argument, indent each line using indent-according-to-mode. \(If there is a fill prefix, make each line start with the fill prefix.) With argument COLUMN, indent each line to that column. Called from a program, takes three args: START, END and COLUMN."